home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Rotater 2.8 / Rotater Files / cube < prev    next >
Text File  |  1994-08-13  |  507b  |  38 lines

  1. # Cube
  2. # by Craig Kloeden <craig@raru.adelaide.edu.au>
  3. # This is the standard test image
  4. # It is just the unit cube with different coloured lines
  5.  
  6. # these lines will not appear in File Comments
  7. # Because of the blank line above
  8.  
  9. # Initial starting point
  10. 1 1 -1 0 This text ignored
  11.  
  12. # Draw first Face
  13. 1 -1 -1 1
  14. -1 -1 -1 1
  15. -1 1 -1 1
  16. 1 1 -1 1
  17.  
  18. 1 1 1 3
  19.  
  20. # Another Face
  21. 1 -1 1 2
  22. -1 -1 1 2
  23. -1 1 1 2
  24. 1 1 1 2
  25.  
  26. # Fill in the rest of the lines
  27.  
  28. -1 -1 -1 0
  29. -1 -1 1 3
  30.  
  31. -1 1 -1 0
  32. -1 1 1 3
  33.  
  34. 1 -1 -1 0
  35. 1 -1 1 3
  36.  
  37. # The end
  38.